www.gusucode.com > Neutrosophic logic toolbox Package_ Neutrosophic Matrices > Neutrosophic logic toolbox Package_ Neutrosophic Matrices/@nm/ae_comp.m

    function Comp=ae_comp(A,B)
% function Comp=ae_comp(A,B)
% Alpha - Epsilon composition of two neutrosophic matrices
% A and B
%
%In the Name of ALLAH
% neutrosphic logic toolbox for computing single valued neutrosophic Matrices 
% Copyright (C) 2015-2019 Broumi said 
%for for details see the refrence:  
%Said Broumi, Le Hoang Son, Assia Bakali, Mohamed Talea, Florentin Smarandache,
%Ganeshsree Selvachandran, Computing Operational Matrices in Neutrosophic Environments:
%A Matlab Toolbox,Neutrosophic Sets and Systems, 18,2017,pp.58-66.
% neutrosphic logic toolbox for computing single valued neutrosophic Matrice comes 
% This is free software, and you are welcome to redistribut;see license.txt for details.
%Comp.m=fuzzy_alpha(A.m,B.m,);
%Comp.n=fuzzy_epsilon(A.n,B.n,);
%disp_intui(Comp)
Comp_.m=fuzzy_alpha(A.m,B.m);
Comp_.i=fuzzy_epsilon(A.n,B.i);
Comp_.n=fuzzy_epsilon(A.o,B.n);
Comp=nm(Comp_.m,Comp_.i,Comp_.n);